/* Footer Styles */
.footer {
  background-color: #efd0094a;
  padding: 50px 0 20px; /* Updated to reduce bottom padding */
  text-align: center;
  color: #6d0c0c;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-menu {
  margin-bottom: 20px;
}

.footer-menu a {
  color: #b30d0d;
  margin: 0 10px;
  text-decoration: none;
  position: relative;
}

.footer-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.footer-menu a:hover::after {
  transform: scaleX(1);
}

.footer-menu a:hover {
  color: #007bff;
}

.footer-menu .primary-menu a::after {
  background-color: #007bff;
}

.footer-menu .secondary-menu a::after {
  background-color: #ff6347;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
}

.footer-menu ul li {
  display: inline-block;
  margin-right: 10px;
}

.footer-menu ul.secondary-menu li::before {
  content: "|";
  margin-right: 10px;
}

.footer-about-us {
  font-style: italic;
  color: #290808;
  margin-bottom: 20px;
}

.social-buttons {
  margin-bottom: 20px;
}

.social-buttons a {
  display: inline-block;
  margin-right: 10px;
  color: #ffffff;
  background-color: #007bff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
}

.social-buttons a:hover {
  background-color: #0056b3;
}

.menu-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.menu-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 2px;
  background-color: #140303;
}
